From 8700ff7bcf6737c95874016ced7e29d4ac5724eb Mon Sep 17 00:00:00 2001 From: Kristian Rietveld Date: Sat, 14 Jan 2006 19:58:04 +0000 Subject: [PATCH] fix a typo which caused this whole thing to not function ... 2006-01-14 Kristian Rietveld * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix a typo which caused this whole thing to not function ... --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ gtk/gtktreemodelsort.c | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 28ce0593e4..4e4977831e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-14 Kristian Rietveld + + * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix + a typo which caused this whole thing to not function ... + 2006-01-14 Kristian Rietveld * gtk/gtktreeview.c (gtk_tree_view_size_allocate), diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 28ce0593e4..4e4977831e 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2006-01-14 Kristian Rietveld + + * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix + a typo which caused this whole thing to not function ... + 2006-01-14 Kristian Rietveld * gtk/gtktreeview.c (gtk_tree_view_size_allocate), diff --git a/gtk/gtktreemodelsort.c b/gtk/gtktreemodelsort.c index df2fe2e314..f8df268b17 100644 --- a/gtk/gtktreemodelsort.c +++ b/gtk/gtktreemodelsort.c @@ -1095,7 +1095,7 @@ gtk_tree_model_sort_iter_children (GtkTreeModel *tree_model, iter->stamp = 0; g_return_val_if_fail (tree_model_sort->child_model != NULL, FALSE); if (parent) - g_return_val_if_fail (VALID_ITER (iter, tree_model_sort), FALSE); + g_return_val_if_fail (VALID_ITER (parent, tree_model_sort), FALSE); if (parent == NULL) { -- 2.30.2